home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / devel / tcl / tclx7_31.z / tclx7_31 / tcldev / tclX7.3a-p1 / CHANGES < prev    next >
Encoding:
Text File  |  1994-01-24  |  40.3 KB  |  766 lines

  1.                          * Changes to Extended Tcl *
  2. ===============================================================================
  3. 13 Nov 91: Extended Tcl 6.1a released
  4. ===============================================================================
  5. 20 Nov 91: 
  6.   o Fixed use of invalid variable when reporting an error in 
  7.     test/unixcmds.test.
  8.   o Changed temporary files names so they are 14 characters or less in 
  9.     test/chmod.test.
  10.   o Changed TCL_MAN_SECTION for SCO Unix to be "TCL" instead of "tcl".
  11.   o Modified src/main.c to be independent of the internal Tcl include files.
  12.   o Changed ar to not use the 'u' option in makes.
  13.   o For ucbsrc, delete the objects explicitly from libtcl.a, since sometimes
  14.     the modified version tclBasic.o was not replacing the standard version.
  15. -------------------------------------------------------------------------------
  16. 29 Nov 91:
  17.   o Added configuration section for older versions of SunOS.
  18.   o Added an strtoul replacement for HP/UX, since their version accepts
  19.     negative numbers.
  20.   o Converted the global tclxPatchlevel from a string to an int.
  21.   o Modified test for chmod +t, since this will actually change the file mode
  22.     if run as root.  Changed chown tests to compare file group id against the 
  23.     effective group id, in case tests are run with the effective group id
  24.     changed.
  25.   o Fixed bad error message from id command when user or group name does not
  26.     exist.
  27.   o Made tclSignalReceived a external flag that can be checked by C code to
  28.     determine if signal a signal is pending.
  29.   o Corrected the spelling of the variable 'signalReceived' that is set when
  30.     trap code is by a signal (signal command). (*POTENTIAL INCOMPATIBILITY*)
  31.   o Changed code in src/createExtd.c that is supposed to force math error to
  32.     be included so that an optimizer doesn't decide to throw away the external
  33.     reference.
  34.   o Modified commandloop to reset command buffer when a signal is received,
  35.     enabling interrupting the input of multi-line commands.
  36.   o Fixed problem with math error tests were pow did not return an error on
  37.     some systems.
  38. -------------------------------------------------------------------------------
  39. 29 Nov 91: tests/all, tests/fmath.test, tests/math.test, tests/loop.test,
  40.            tests/filescan.test
  41.   o Converted to current test support routines: fmath.test, math.test and
  42.     loop.test.
  43.   o Removed tests/testutil.test, as its no longer needed.
  44. -------------------------------------------------------------------------------
  45. 30 Nov 91:
  46.   o Made detection of _tolower and _toupper automatic, instead of a 
  47.     configuration option.
  48. -------------------------------------------------------------------------------
  49.  2 Dec 91:
  50.   o Updated showproc.tcl with Lance Ellinghouse's improved version that dumps
  51.     default argument info.  
  52. -------------------------------------------------------------------------------
  53.  5 Dec 91:
  54.   o Fixed bug with doing a keylget on an empty string.
  55. -------------------------------------------------------------------------------
  56.  4 Jan 92:
  57.   o Fixed BinSearch so it doesn't overwrite the error returned by
  58.     TclGetOpenFile with another error message.
  59. -------------------------------------------------------------------------------
  60.  5 Jan 92:
  61.   o Fixed link and unlink commands to do tilde substitution.
  62. -------------------------------------------------------------------------------
  63.  9 Jan 92:
  64.   o Fixed problem with Boyer-Moore optimization causing scanfile to fail
  65.     matches when the regular expression contains ORs (|).
  66. -------------------------------------------------------------------------------
  67.  10 Jan 92:
  68.   o Convert execvp to execl to support passing arguments as a list, rather than
  69.     a series of parameters.  Added a execvp to the Tcl procedure library to
  70.     provide backwards compatibility.
  71. -------------------------------------------------------------------------------
  72.  11 Jan 92: man/TclX.man
  73.   o Changes to make some manual sections more readable.
  74. -------------------------------------------------------------------------------
  75.  13 Feb 92:
  76.   o Added `procs' option to cmdtrace that traces procedure calls only.
  77.   o Added `-nocomplain' flag to unlink command.
  78.   o Changed package index structure so the file name is not included in the
  79.     index file.
  80.   o Added support for optional #@packend, to mark end of packages.
  81.   o Merged in changes to support A/UX 2.01 (supplied by Parag Patel)
  82. -------------------------------------------------------------------------------
  83.  15 Feb 92:
  84.   o Modified keylget to return a list of keyes in a keyed list if no field
  85.     name is spefieied.  Added Tcl_GetKeyedListKeys to support this operation.
  86.   o Added keyed list sub field support (i.e. FOO.BAZ).
  87.   o Added type attribute to the values returned by the fstat command to give
  88.     it the same functionality as the Tcl6.2 file command.
  89.   o Update help files based on the ucb manual pages and added help for
  90.     standard built-in variables.
  91. -------------------------------------------------------------------------------
  92.  16 Feb 92:
  93.   o Modified install script to unlink manual pages before it links to new ones.
  94. -------------------------------------------------------------------------------
  95.  23 Feb 92:
  96.   o Moved the external declaration of variables set by the startup code
  97.     to tclExtended.h.
  98.   o Made startup more modular to support applications like Tk.  Made setting
  99.     of globals variables for infox in the main optional.  If not set, start up
  100.     sets them to a default.  (All backwards compatible).
  101. -------------------------------------------------------------------------------
  102.   2 Mar 92:
  103.   o Added -sym option to link command to support symbolic links.
  104. -------------------------------------------------------------------------------
  105.   3 Mar 92:
  106.   o Modified keylset to take multiple keyword/value pairs.
  107.   o Moved all tcl++.h vararg routines into tcl++.C, since inlined varargs
  108.     don't work right with some compilers.
  109. -------------------------------------------------------------------------------
  110.   4 Mar 92:
  111.   o Added catopen, catgets and catclose commands.
  112. -------------------------------------------------------------------------------
  113.  11 Mar 92:
  114.   o Combined TclShell.man and tcl.tlib.man with TclX.man to put all
  115.     documentation for Tcl language programing in one manual page.
  116. -------------------------------------------------------------------------------
  117.  13 Mar 92:
  118.   o Moved configuration from the toplevel Makefile to Config.mk, which is now
  119.     included by all Makefiles and parsed by the install script.
  120.   o Changed all calls to cc use the $(CC) macro.
  121. -------------------------------------------------------------------------------
  122.  19 Mar 92:
  123.   o Fixed bug in command loop were certain set commands were valid commands,
  124.     but invalid lists.
  125. -------------------------------------------------------------------------------
  126.  24 Mar 92:
  127.   o Added support for numBytes or nonewline to `read_file' procedure.
  128.   o Added lgets command to read lists from a file, included embedded newlines.
  129. ===============================================================================
  130.  4 Mar 92: Extended Tcl 6.2b released
  131. ===============================================================================
  132.  7 Apr 92: 
  133.    o Fixed bug were no error message was returned with the TCLDEFAULT file
  134.      could not be found.
  135. -------------------------------------------------------------------------------
  136. 13 Arp 92: 
  137.    o Moved definition of CLK_TCK if its undefined until after the place were
  138.      time.h might be included in tclExtdInt.h.
  139. -------------------------------------------------------------------------------
  140. 15 Apr 92:
  141.    o Added TCL_TIMEZONE_VAR option for systems that don't return the timezone
  142.      offset in `struct tm'.
  143.    o Deleted test from tests/clock.test that returned a different result in
  144.      a different timezone.
  145. -------------------------------------------------------------------------------
  146. 27 Apr 92:
  147.    o Fixed bug in fstat that caused the keyed list get of all status data
  148.      to return invalid data.
  149. -------------------------------------------------------------------------------
  150.  1 May 92:
  151.    o Moved setting of prompt hooks before source ~/.tclrc so that prompts can
  152.      be modified in the .~/tclrc.
  153. -------------------------------------------------------------------------------
  154.  3 May 92:
  155.    o Changed src/Makefile to use CCPLUSINCL.
  156.    o Fixed cast problems in src/clock.c and src/tcl++.c
  157.    o Added SGI and IBM RS6000 to Config.mk based on billa@msi.com (Bill
  158.      Alexander) porting.
  159. -------------------------------------------------------------------------------
  160.  4 May 92:
  161.    o Added tcl 6.3 fixes to ucbsrc/tclBasic.c
  162. -------------------------------------------------------------------------------
  163. 11 May 92:
  164.    o Delete closing of pipes from Tcl_System.
  165. -------------------------------------------------------------------------------
  166. 14 May 92:
  167.    o Changed floating point math command to take expressions.
  168. -------------------------------------------------------------------------------
  169. 18 May 92:
  170.    o Fixed bug in lvarpop were it core dumps if passed variable containing an
  171.      invalid list.
  172. -------------------------------------------------------------------------------
  173. 28 May 92:
  174.    o Fixed search path so it does not return an error when a path contains
  175.      an invalid ~user.  
  176.    o Fixed keyedlists from occasionally returning incorrect error with no
  177.      error message when adding a field to an empty list.
  178. -------------------------------------------------------------------------------
  179. 10 Jun 92:
  180.    o Update chmod tests to not make assumptions about what group id a file
  181.      as created with.
  182.    o Added support for implementations that indicate floating point errors from
  183.      math functions by returning not-a-number, rather than calling matherr.
  184.    o Changed cindex, crange, csubstr and replicate to take integer
  185.      expresssions.
  186.    o Improved documentation of Tcl_ShellEnvInit.
  187. -------------------------------------------------------------------------------
  188. 14 Jun 92:
  189.    o Changed tclEdtdInt.h to use declare command executors as ANSI prototypes
  190.      instead of being of type Tcl_CmdProc, since this broke a DEC compiler.
  191.    o Fixed loop command so that the control variable is left at its
  192.      terminating value, not the previous value.
  193.    o Fixed Tcl_Startup so if used the defaultFile passed in, rather than
  194.      assuming the compiled default value.
  195. -------------------------------------------------------------------------------
  196. 28 Jun 92:
  197.    o Fixed bug where a SIGINTR will sometimes cause the command loop to panic.
  198.    o To speed up package library index loading, changed the .tndx file to only
  199.      contain data, not commands to be sourced.  Added Tcl procedure to convert
  200.      Ousterhout-style tclIndex files into package libraries.
  201.    o Fixed problem with cmdtrace of procedures that have empty bodies.  Also
  202.      simplified and optimized the code for tracing procedures.
  203. -------------------------------------------------------------------------------
  204. 30 Jun 92:
  205.    o Fixed ShellEnvInit member function in tcl++.h.
  206. -------------------------------------------------------------------------------
  207. 12 Jul 92:
  208.    o Added profile command and profrep procedure.
  209.    o Changed alarm command to take floating point seconds and use setitimer
  210.      when available.
  211.    o Moved the system dependent parts of Config.mk to seperate files in a
  212.      directory called config.  A #define in Config.mk now indicates which file
  213.      to use.
  214.    o Droped the -i flag from the chmod command for compatibility with Tcl open
  215.      command changes.  Octal numbers must be prefixed with a "0".
  216.      *** Potential compatibility problem ***
  217. -------------------------------------------------------------------------------
  218. 31 Jul 92:
  219.    o Fix max command so it works for negative numbers.
  220. -------------------------------------------------------------------------------
  221. 9 Aug 92:
  222.    o Changed build of ucbsrc and tkSupport so that the modified files are
  223.      built from the original files using sed.
  224.    o Imporved autoloading, including not searching path if file name contains
  225.      directories.  Demand_load searchs "auto_path" if it can't find the proc
  226.      anywhere else, this should help Tk programs that dynamicly add directories
  227.      to the variable.  This code moved to C to speed it up.
  228. -------------------------------------------------------------------------------
  229. 12 Aug 92:
  230.    o Made message catalog table process global, so a message catalog handle
  231.      is valid in all interpreters in a process.
  232. -------------------------------------------------------------------------------
  233. 21 Aug 92:
  234.    o Added support for building a wish with signals.
  235.    o Fix bug where errorCode on a signal was not in the documented format.
  236. -------------------------------------------------------------------------------
  237. 23 Aug 92:
  238.    o Added lvarpush command.
  239. -------------------------------------------------------------------------------
  240. 3 Sept 92:
  241.    o Converted loading of Tcl library indexes from Tcl to C to speed up these
  242.      operations.
  243.    o Changed fcntl attributes to be named line the Posix standards:  NDELAY is
  244.      changed to NONBLOCK and CLEXEC to CLOEXEC. Fcntl nolonger returns a list
  245.      of current values on query, instead individule values may be queried.
  246.      This makes it easier to use in the normal case and better allows for
  247.      future expansion.  (*POTENTIAL INCOMPATIBILITY*)
  248. -------------------------------------------------------------------------------
  249. 6 Sept 92:
  250.    o Changed the signal command to return a keyed list for signal state query.
  251.      Include the command associated with signals that are "trap".  This makes
  252.      it easier to restore the state of signals that you change.
  253.      (*POTENTIAL INCOMPATIBILITY*)
  254. -------------------------------------------------------------------------------
  255. 7 Sept 92:
  256.    o Automatically build a Tk .tlib.
  257.    o Added installation of Extended Tk to the install script.
  258. -------------------------------------------------------------------------------
  259. 11 Sept 92:
  260.    o Changed select to check read stdio buffers for pending data.  This way
  261.      the files do not have to be unbuffered.
  262.    o Added ability  to get a list of keys for a subfield to function
  263.      Tcl_GetKeyedListKeys.  This necessitated adding a parameter.
  264.      (*POTENTIAL INCOMPATIBILITY*)
  265.    o Added kelykeys command to return lists of keys from a keyed list.
  266. -------------------------------------------------------------------------------
  267. 14 Sept 92:
  268.    o Changed the fstat command to make it easier to use and more consistent
  269.      with the file command.  This forced a syntax chang for fstat commands
  270.      were the data is returned in an array variable.
  271.      (*POTENTIAL INCOMPATIBILITY*)
  272.    o Added tty option to fstat (interface to isatty).
  273. -------------------------------------------------------------------------------
  274. 20 Sept 92:
  275.    o Changed package library loading so that duplicate package names found in
  276.      a path are loaded.
  277.    o Added the -location options to the packages command.
  278.    o Changed write_file to take multiple strings.
  279.    o Added lvarcat command.
  280.    o Reorganized Makefiles to simplify and fix some make problems.
  281. -------------------------------------------------------------------------------
  282.  1 Oct 92:
  283.    o Wait command was changed to take only one pid.  This is in preparation
  284.      for supporting full waitpid functionallity once the support has been
  285.      added to UCB Tcl.  (*POTENTIAL INCOMPATIBILITY*)
  286. -------------------------------------------------------------------------------
  287.  2 Oct 92:
  288.   o Reorganized help categories.
  289.   o Changed floating point commands to always return floating point numbers
  290.     without lose of precision or demotion to integer.
  291.   o Patch the UCB tclExpr.c file to return doubles without lose of precision.
  292.     This is temporary until a fix is povided in the UCB code.
  293. -------------------------------------------------------------------------------
  294.  4 Oct 92:
  295.   o Fixed behavior of Posix signals and SIGCHLD.
  296.   o Added block and unblock options.
  297.   o Added return of block state in the get option.
  298.   o Fixed potential bug in lrmdup.
  299.   o Process signals when encountered in the command loop rather than just clear
  300.     them.
  301.   o Stored the "wrong # args: " string in a single global  variable to save
  302.     memory rather than repeating in each command.
  303. -------------------------------------------------------------------------------
  304.  5 Oct 92:
  305.   o Fixed bug in for_recursive_glob with continue and break not working as
  306.     expected.
  307.   o Delete chamge bar macros when installing manual pages.
  308.   o Changed startup so if no longer looks for a local TCLDEFAULT file.  Initial
  309.     tests are now run by setting the environment variable.
  310.   o Fixed bug in chmod were set permissions for two difference classes (u,g,o)
  311.     with = in the same command did not work.
  312.   o Changed help and buildhelp.tcl so that multiple brief files are allowed
  313.     (extension .brf).
  314. -------------------------------------------------------------------------------
  315.  7 Oct 92:
  316.   o Signal handling changed so that if multiple signals are received before
  317.     before they are handle and if trap code is associated with that signal,
  318.     then the trap code will be run once for every signal received.
  319. -------------------------------------------------------------------------------
  320.  8 Oct 92:
  321.   o Recoded assign_fields to use upvar.
  322. -------------------------------------------------------------------------------
  323. 11 Oct 92:
  324.   o Modified install script to purge the target help tree before installing.
  325. -------------------------------------------------------------------------------
  326. 12 Oct 92:
  327.   o Added a options argument to Tcl_Startup.  It is not currrently used.
  328.    (*POTENTIAL INCOMPATIBILITY*)
  329. ===============================================================================
  330. 15 Oct 92: Extended Tcl 6.4c released
  331. ===============================================================================
  332. 24 Oct 92:
  333.   o Fixed problem in tclXprocess were it will not compile if wait status
  334.     is union wait.
  335.   o Fixed minor manual page problems.
  336.   o Corrected problems in RS/6000 config file.
  337.   o Fixed problem with buildhelp.tcl always truncating filenames.
  338. -------------------------------------------------------------------------------
  339. 27 Oct 92:
  340.   o Added configure file for new version of Ultrix (4.2+).
  341. -------------------------------------------------------------------------------
  342.  7 Nov 92:
  343.   o Fixed problems with convertclock timezones on some machines.
  344.   o Added config file for ultrix4.2
  345.   o Deleted strtoul from osSupport directory and config files.  This is now
  346.     compiled with UCB Tcl if needed.
  347. -------------------------------------------------------------------------------
  348.  8 Nov 92:
  349.   o Use our own strftime for SGI since their's is broken.
  350.   o Added changes to fix problems with systems using IEEE floating point math
  351.     error reporting.
  352. ===============================================================================
  353.  9 Nov 92: Extended Tcl 6.4c patch1 released
  354. ===============================================================================
  355. 14 Nov 92:
  356.   o Added a -n option to the command line that prevents the dumping of the
  357.     procedure call stack on an error.  This is also added as an option to
  358.     the C startup routines.
  359. -------------------------------------------------------------------------------
  360. 16 Nov 92:
  361.   o Only set SIGINT to cause an error if the Tcl shell or wish is reading
  362.     commands from stdin.  (*POTENTIAL INCOMPATIBILITY*)
  363. -------------------------------------------------------------------------------
  364. 18 Nov 92:
  365.   o Fixed bug were packages from libraries and other auto-loads were not
  366.     evaluate in the global environment.
  367. -------------------------------------------------------------------------------
  368. 19 Nov 92:
  369.   o Made yyerror a static in tclXgetdate.y, as it conflicted with yyerror in
  370.     libraries on some systems.
  371.   o Modified Makefile so that main.o is not included in the library.
  372. -------------------------------------------------------------------------------
  373. 25 Nov 92:
  374.   o Changed fcntl to handle stdio flags when both the BSD and System-V flags
  375.     are defined.
  376. -------------------------------------------------------------------------------
  377.  1 Dec 92:
  378.   o Fix bug where table expansion copied more that the old size of the table.
  379. -------------------------------------------------------------------------------
  380. 14 Dec 92:
  381.   o Fixed problem installing if target directory for Tcl code is not an 
  382.     absolute path.
  383. -------------------------------------------------------------------------------
  384. 18 Dec 92:
  385.   o Added TCL_POSIX_SIG to Ultrix4.2 configure file.  Fixed problems in signal
  386.     tests.
  387.   o Recompile UCB file tclCmdIL.c to so that "info library" returns the library
  388.     directory specified in Config.mk.
  389.   o Renamed the Extended Tcl wish shell to "wishx", so both extended and
  390.     standard versions can be installed on the system.
  391.     (*POTENTIAL INCOMPATIBILITY*)
  392.   o Changed install program to handle new Tk manual page names.
  393.   o Added a library proc "tkdemo" to run the Tk demo program once wishx is
  394.     installed.
  395.   o Made compatibility with Tcl 6.5 & Tk 3.0.
  396. ===============================================================================
  397. 19 Dec 92: Extended Tcl 6.5c patch 2 released. Makes TclX6.4c-P1 compatible
  398.            with Tcl 6.5 and Tk 3.0.  Plus adds above fixes and features.
  399. ===============================================================================
  400. 29 Dec 92:
  401.   o Fixed bug in convertclock command were a date string without an explict
  402.     timezone returns invalid results.
  403. ===============================================================================
  404. 29 Dec 92: Extended Tcl 6.4c/6.5c patch3 released.
  405. ===============================================================================
  406.  4 Jan 93: 
  407.   o Fixed typo in src/Makefile of C++ include path macro.
  408. -------------------------------------------------------------------------------
  409. 25 Jan 93:
  410.   o Removed use of non-ansi strftime form specs (%D %r) from the tests.
  411.   o Fixed incorrect check for strftime error.
  412.   o Added config file for Convex C-series, ConvexOS V10.0 or greater.
  413.   o Merged Convex diffs suppliex by Larry Streepy <streepy@pixel.convex.com>
  414. -------------------------------------------------------------------------------
  415. 07 Feb 93:
  416.   o Incorporated newer version of getdate.y, reorganized the convertclock
  417.     command code and improved the tests.
  418. -------------------------------------------------------------------------------
  419. 10 Feb 93:
  420.   o Convert name1 & name2 to part1 & part2 in tcl++.h because of conflict with
  421.     generic.h macro.
  422. -------------------------------------------------------------------------------
  423. 13 Feb 93:
  424.   o Change the tcl++.h cmd parameter of from const char * to char *, since
  425.     Tcl_Eval requires the string to be writable.
  426.     (*POTENTIAL INCOMPATIBILITY for C++ code*)
  427.   o Removed cmdtrace flush option, output lines are now always flushed.
  428.    (*POTENTIAL INCOMPATIBILITY*)
  429. -------------------------------------------------------------------------------
  430. 16 Feb 93:
  431.   o Fix install script to handle new macro .so file in Tcl & Tk.  Will fold it
  432.     into the man page, as some man commands don't do well with .so.
  433.   o Added lassign command, a C implementation of the assign_fields proc.  This
  434.     proc was moved to the compatibility package and modified to call lassign.
  435.   o Do ranlib after copying UCB libraries.
  436. -------------------------------------------------------------------------------
  437. 21 Feb 93:
  438.   o Added posix_signals options to the infox command.
  439.   o Eliminated the use of SIG_ERR with Posix signals (its not part of the
  440.     standard).
  441. -------------------------------------------------------------------------------
  442.  6 Mar 93:
  443.   o Converted error messages containing optional arguments from the form [xxx]
  444.     to ?xxx? for consistency with Tcl.
  445. -------------------------------------------------------------------------------
  446. 10 Mar 93:
  447.   o Added the program and make target to build Tk help files from the command
  448.     manual pages.
  449. -------------------------------------------------------------------------------
  450. 14 Mar 93:
  451.   o Deleted merge tree option of buildhelp.tcl.  This was for internal use and
  452.     is no longer needed.
  453.   o Made read_file argument compatible with the read command.
  454.   o Close file in read_file & write_file if an I/O error occurs.
  455.   o Eliminated the Tcl default file.  The file TclInit.tcl is now sourced
  456.     directly and it sets the Tcl path.  The directory Tcl is installed in
  457.     now contains the TclX version number.
  458. -------------------------------------------------------------------------------
  459. 22 Mar 93:
  460.   o In SGI config file, Added -lsun to get NIS getpwnam.
  461. -------------------------------------------------------------------------------
  462. 5 Apr 93:
  463.   o Handle conversions of dates correctly when in daylight savings time.
  464.   o Added support for linux from Jamie Honan <jhonan@kralizec.zeta.org.au>.
  465. -------------------------------------------------------------------------------
  466. 15 Apr 93:
  467.   o Updated RS600 config file thanks to R Lindsay Todd <toddr@rpi.edu>.
  468.   o Fixed problems with convertclock converting GMT times while in DST.
  469. -------------------------------------------------------------------------------
  470.  2 May 93:
  471.   o Fixed keylget to handle internal quoting correctly.  Thanks to 
  472.     Spencer W. Thomas <spencer@med.umich.edu> for the fix.
  473. -------------------------------------------------------------------------------
  474.  3 May 93:
  475.   o Allow for backslash continuation of #@package: lines.
  476.   o Deleted Tcl_System, per UCB wait changes.  Added osSupport/system.c for
  477.     anyone who's "system" function uses wait (i.e. is broken).
  478.    (*POTENTIAL INCOMPATIBILITY for C code.*)
  479.   o Removed outdate execvp proc (use execl). (*POTENTIAL INCOMPATIBILITY*)
  480. -------------------------------------------------------------------------------
  481.  9 May 93:
  482.   o Changed loadlibindex so it overrides existing package definitions.
  483. -------------------------------------------------------------------------------
  484. 12 May 93:
  485.   o Run ranlib on lib files after installing.
  486.   o Improved readability of profrep output.
  487.   o Build index will ignore errors changing ownership.
  488.   o Allow profiling to work on systems where times does not return real time.
  489. -------------------------------------------------------------------------------
  490. 26 May 93:
  491.   o Added solaris make file supplied by Judy Grass.
  492.   o Fixed filescan so that if will keep matchInfo(offset) valid even if the
  493.     callbacks read from the file.
  494. -------------------------------------------------------------------------------
  495. 28 May 93:
  496.   o Added fix for flock on Solaris supplied by Judy Grass.
  497.   o Call tzset on systems that use the timezone variable.
  498.   o buildpackageindex now deletes the index if the build fails.
  499. -------------------------------------------------------------------------------
  500.  8 Jun 93:
  501.   o Fixed unknown trap handler so it works on systems were
  502.     "file executable {}" returns 1.
  503. -------------------------------------------------------------------------------
  504. 17 Jun 93:
  505.   o Extended wait command to support all waitpid options.
  506.   o Can not dup to any specified file id, instead of just the standard ones.
  507.   o The history command can nolonger be compiled out.
  508. -------------------------------------------------------------------------------
  509. 20 Jun 93:
  510.   o Changed package library code to be a functional super-set of the standard
  511.     Tcl 7.0 libraries.  auto_path is now used instead of TCLPATH.  Several
  512.     commands have been elimiated.  (*POTENTIAL INCOMPATIBILITY*)
  513.   o Deleted the floating-point math functions that are now part of the "expr'
  514.     command.  Supplied procs in tcl.tlib to replace the old commands.
  515.   o Many changes for compabibility with Tcl 7.0.
  516.   o Changed the help facility so that multiple help directories are searched
  517.     to find help files.  This forms a virtual help tree root.
  518. -------------------------------------------------------------------------------
  519. 27 Jun 93:
  520.   o Incorporated fix to the profile command that caused it to count upleveled
  521.     CPU time twice.  Patch supplied by Bob Mazanec <mazanec@hci.cirr.com>.
  522.   o Changed for_recursive_glob and recursive_glob to not follow symbolic links.
  523.   o Merged the "showprocs" functionallity into "showproc", they were almost the
  524.     same.  (*POTENTIAL INCOMPATIBILITY*)
  525.   o Changed shell initialization so it doesn't change the prompt hooks if they
  526.     have already be set during startup.
  527. -------------------------------------------------------------------------------
  528. 11 Jul 93:
  529.   o Changed random command to use random instead or rand.  Supplied the BSD
  530.     random function in osSupport.
  531.   o Changed "programName" variable to "argv0" for compatibility with Tcl 7.0.
  532.     (*POTENTIAL INCOMPATIBILITY*)
  533.   o Simplified shell startup code, including support for separate master
  534.     directories for TclX and Tk.  Tcl_CommandLoop function is now internal.
  535.     (*POTENTIAL INCOMPATIBILITY for C code*)
  536.   o Changed cindex, crange and csubstr to take expressions starting with a
  537.     magic token "end" or "len" that will be substituted before the expression
  538.     is evaluated.
  539.   o Add kludge to get machines with only the timezone variable to handle
  540.     formating time as GMT correctly.
  541.   o Added our own version of wish main, with programmable prompts, etc.
  542. -------------------------------------------------------------------------------
  543. 18 Jul 93:
  544.   o Changed "signal trap" to edit the command, replacing %S with the signal
  545.     name rather than storing in the global variable. "signalReceived".  This
  546.     fixes bugs with signals received in a signal handler.
  547.    (*POTENTIAL INCOMPATIBILITY*)
  548. -------------------------------------------------------------------------------
  549. 20 Jul 93:
  550.   o Fixed bug with lgets not handling backslashes correctly.
  551. ===============================================================================
  552. 20 Jul 93: Released TclX7.0a Beta 1.
  553. ===============================================================================
  554. 22 Jul 93:
  555.   o Changed filescan (Boyer-Moore) code to prevent code generation bug under
  556.     HPUX.
  557.   o Fixed bug in tclXlib string handling.
  558. -------------------------------------------------------------------------------
  559. 24 Jul 93:
  560.   o Added ctoken string parsing command.
  561. -------------------------------------------------------------------------------
  562. 27 Jul 93:
  563.   o Fixed signal handling in wishx.
  564.   o Fixed problems with owner/group not being validated if large number.
  565. -------------------------------------------------------------------------------
  566. 29 Jul 93:
  567.   o Fixed bug in select that caused it to return an empty list when data is
  568.     pending in the stdio buffer.
  569.   o Added TclX autoconf configuration.
  570. -------------------------------------------------------------------------------
  571. 39 Jul 93:
  572.   o Provided the functions Tcl_AddExtendedCmds and Tcl_AddExtendedLibCmds
  573.     that can add the Extended Tcl commands to an existing interpreter.
  574.   o Don't print shell prompts if not a tty.
  575. ===============================================================================
  576.  2 Aug 93: Released TclX7.0a Beta 2.
  577. ===============================================================================
  578.  3 Aug 93:
  579.   o Fixed core dump in chmod command.
  580.   o Loop command now takes expressions.
  581. -------------------------------------------------------------------------------
  582.  4 Aug 93:
  583.   o Change the "yy" prefix in the code generated from tclXgetdate.y to be
  584.     "TclXyy".  This is to allow apllications to include yacc code.
  585.   o Call isascii before isspace to handle non-ASCII character sets.
  586. ===============================================================================
  587.  5 Aug 93: Released TclX7.0a Beta 3.
  588. ===============================================================================
  589. 17 Aug 93:
  590.   o Add -bytes and -maxbytes options to copyfile.
  591.   o Fixed configuration problems with including values.h and sys/time.h.
  592.   o Added "make partclean", that does not remove the manual pages that were
  593.     copied to the master directory.  Useful the for the debugging process.
  594. -------------------------------------------------------------------------------
  595. 19 Aug 93:
  596.   o Fixed bug with convetclock not working in BST.
  597. -------------------------------------------------------------------------------
  598. 24 Aug 93:
  599.   o Added configure check for MCS and time_t.
  600.   o Changed makefiles so that Config.mk can have absolute or relative paths
  601.     to files.
  602. -------------------------------------------------------------------------------
  603. 30 Aug 93:
  604.   o Integrated with new Tcl Async functions for signal handling.  Signal
  605.     handling should now work with multiple interpreters.
  606.   o Change "interactiveSession" variable to "tcl_interactive" and moved
  607.     prompts from "TCLENV" array to "tcl_prompt1" and "tcl_prompt2".  These
  608.     changes were done for compatibility with UCB Tcl.
  609.     (*POTENTIAL INCOMPATIBILITY*)
  610. ===============================================================================
  611.  1 Sep 93: Released TclX7.0a Beta 4.
  612. ===============================================================================
  613.  4 Sep 93:
  614.   o Fixed problem with TCL_LIBRARY and TK_LIBRARY being set to the standard
  615.     paths rather than the TclX paths.
  616. -------------------------------------------------------------------------------
  617.  7 Sep 93:
  618.   o Added lmatch command.
  619.   o Changed libtclx.a and libtk.a to be supplements to libtcl.a and libtk.a
  620.     rather than super-sets.
  621.   o Its now ok for files that are the target of a dup to be close.
  622. -------------------------------------------------------------------------------
  623.  8 Sep 93:
  624.   o Added notes about Tk applications and the fork & execl commands.
  625.   o Added full set of signal names that can be used on signal and kill.
  626.   o Added -pgroup to kill.
  627. -------------------------------------------------------------------------------
  628. 15 Sep 93:
  629.   o Initialization now uses a TclX_AppInit mechanism similar to that used by
  630.     Tcl/Tk.   (*POTENTIAL INCOMPATIBILITY for C code*)
  631.   o Make sure to use real waitpid, rather than the wrapper internal to Tcl
  632.     that hides signals.
  633. -------------------------------------------------------------------------------
  634. 19 Sep 93:
  635.   o Added -copyfile option to scanfile.
  636.   o Updated tcl++.h with all new Tcl & TclX functions. 
  637.   o Changed the tcl & wishx *main.c files so they will compiler with both C
  638.     and C++.
  639. -------------------------------------------------------------------------------
  640. 22 Sep 93:
  641.   o Added support for the configure --srcdir option.
  642. -------------------------------------------------------------------------------
  643. 24 Sep 93:
  644.   o Clear errors/EOF before doing a file read so old state does not get
  645.     returned.
  646.   o Redesigned recursive_glob and for_recursive_glob to fix  broken semantics.
  647.     The arguments have changed. (*POTENTIAL INCOMPATIBILITY*)
  648.   o Added option to "ctype" to return the index of character that failed the
  649.     specified classification.  Based on code developed by John Robert LoVerso
  650.     <loverso@osf.org>
  651. -------------------------------------------------------------------------------
  652. 27 Sep 93:
  653.   o Added support for old format tclIndex files.
  654. -------------------------------------------------------------------------------
  655. 30 Sep 93:
  656.   o Integrated with Tcl 7.0 and Tk 3.3.
  657. -------------------------------------------------------------------------------
  658.  6 Oct 93:
  659.   o Add ability to specify "end" as the index for lvarpop and lvarpush. Thanks
  660.     to Tom Tromey <tromey@busco.lanl.gov>.
  661.   o Fixed many long != int protability problems. Thanks to Steve Clift
  662.     <clift@ml.csiro.au>.
  663. -------------------------------------------------------------------------------
  664. 21 Oct 93:
  665.   o Recompile the needed Tcl & Tk files to set the Tcl & Tk library paths
  666.     rather than attempting to override it by setting environment variables,
  667.     as this can have side affects with exec-ed programs.
  668. -------------------------------------------------------------------------------
  669. 24 Oct 93:
  670.   o Added "frename" command.
  671. -------------------------------------------------------------------------------
  672. 30 Oct 93:
  673.   o Added --arch flag to configure program.
  674.   o Added -argv0 option to execl command. Thanks to R Lindsay Todd
  675.     <toddr@rpi.edu>.
  676. -------------------------------------------------------------------------------
  677.  3 Nov 93:
  678.   o Change help marker for nroff manual pages from '@ to '\"@, since this
  679.     is a true comment. (*POTENTIAL INCOMPATIBILITY*) 
  680. -------------------------------------------------------------------------------
  681.  4 Nov 93:
  682.    o Added "infox apppatchlvel" and tclAppPatchlevel C global.
  683. -------------------------------------------------------------------------------
  684.  7 Nov 93: 
  685.    o Changed lassign to return a list of unassigned elements.  Thanks to
  686.      Wolf-D. Ihlenfeldt <wolf@molout.tutkie.tut.ac.jp>.
  687.    o Modified Extended Tcl to find ~/.tclrc (or other rc file) via the
  688.      global tcl_RcFileName set in TclX_AppInit.
  689.    o Changed "infox posix_signals" to "infox have_posix_signals".
  690.      (*POTENTIAL INCOMPATIBILITY*) 
  691.    o Added "infox have_sockets" and "infox have_msgcats".
  692.    o chartype ord will not return an error on multi-char strings.
  693.    o Added "chroot", "nice", and "sync" commands, "infox have_fsync" option.
  694. -------------------------------------------------------------------------------
  695. 10 Nov 93:
  696.    o Added epoch keyword in convertclock.  This is to support the postgres
  697.      database time date format.  Thanks to "Wolf-D. Ihlenfeldt"
  698.      <wolf@molout.tutkie.tut.ac.jp>
  699.    o Exported Tcl_GetTimeZone.
  700. ===============================================================================
  701. 10 Nov 93: Released TclX7.1a Beta 5.
  702. ===============================================================================
  703. 13 Nov 93:
  704.    o Renamed TclX_AppInit function to Tcl_AppInit.  This caused major problem
  705.      building shared libraries on Suns.  Also added a reference to "matherr"
  706.      to get the Tcl matherr function brought in on Suns.  Thanks to
  707.      Dr. Joseph E. Sacco <jsacco@ssl.com>.
  708. -------------------------------------------------------------------------------
  709. 17 Nov 93:
  710.    o Added #ifndef checks around internal math function declarations to 
  711.      prevent conflicts with GNU libc header files. (Should really check in
  712.      autoconf).
  713.    o Added "cexpand" and "cequal" commands.
  714.    o Added various changes to support Linux.
  715. ===============================================================================
  716. 18 Nov 93: Released TclX7.2a.
  717. ===============================================================================
  718. 20 Nov 93:
  719.    o Improved tclhelp program:  can resize text windows,  added apropos
  720.      functionallity.
  721. -------------------------------------------------------------------------------
  722. 22 Nov 93:
  723.    o Fixed problems with building with a seperate build directory.
  724. ===============================================================================
  725. 22 Nov 93: Released TclX7.3a and TclX7.2a to TclX7.3a patch.
  726. ===============================================================================
  727.  1 Dec 93:
  728.    o Modify to allow initializing TclX without an Tcl_AppInit function.
  729.    o Added a C variable to force the interpreter to be delete before an exit.
  730.      Useful for applications trying to find memory leaks.
  731. -------------------------------------------------------------------------------
  732.  9 Dec 93:
  733.    o Support correct HZ conversion on cray (thanks to Joanne Pelkey
  734.      <pelkey@craycos.com>.
  735. -------------------------------------------------------------------------------
  736. 15 Dec 93:
  737.    o Fixed problem with tclIndex libraries latter in the search path overriding
  738.      earlier ones.
  739.    o Fixed auto_reset, which left TclX autoloading in an invalid state.
  740. -------------------------------------------------------------------------------
  741. 17 Dec 93:
  742.    o Changed make process to work around Ultrix non-standardisms.
  743.    o Fixed alignment problems in scanfile and handle table that broke
  744.      DEC Alphas.
  745. -------------------------------------------------------------------------------
  746. 21 Dec 93:
  747.    o Fixed system command to return exit status rather than wait status.
  748.      This is what the command was documented to do.
  749.      (*POTENTIAL INCOMPATIBILITY*)     
  750. -------------------------------------------------------------------------------
  751.  4 Jan 94:
  752.    o Fixed potential memory corruption when loadlibindex cann't read a file.
  753.    o Don't let keylset set an empty key name since keylget can't access it.
  754. -------------------------------------------------------------------------------
  755. 10 Jan 94:
  756.    o Added check for GNU libc to work around the GNU getopt non-standard
  757.      behavior.  This should make things happy for Linux.
  758.    o Improved tclhelp error handling.
  759.    o Code in tcl_prompt variables must now output the prompt rather than 
  760.      return it.  This is for compatibility with tclsh.
  761.      (*POTENTIAL INCOMPATIBILITY*)
  762.    o Added "readdir" command.
  763. ===============================================================================
  764. 23 Jan 94: Released TclX7.2a-p1 (patch and full release).
  765. ===============================================================================
  766.